jQuery(document).ready(function(){ /*fixed Menu*/ var top = parseInt(jQuery('#fixedMenu').offset().top); jQuery(window).scroll(function (event) { var y = jQuery(this).scrollTop(); if (y >= top) { jQuery('#fixedMenu').addClass(' fixed'); jQuery("#fixedMenu").fadeIn(); } else if(y < top){ jQuery('#fixedMenu').removeClass('fixed'); } }); if(jQuery(window).scrollTop() >= 500){ jQuery(window).trigger('scroll'); } jQuery('.navicon').click(function(){ jQuery('#navbar').toggle(); }); jQuery(".searchbxbrn").click(function(){ jQuery(".search-form-full").show(); }); jQuery(".closebtn2").click(function(){ jQuery(".search-form-full").hide(); }); }); jQuery(function(){ jQuery('.breaking').bxSlider({ /* mode: 'horizontal', auto: true, autoHover:true, speed: 500, */ pager: false, slideMargin: 30, controls: false, speed: 50000, useCSS: false, ticker: true, tickerHover: true, /*slideWidth: 300,*/ responsive: false, minSlides: 2, maxSlides: 100, }); jQuery('.nt_close').click(function(){ jQuery('.breaking-news').hide(); }); });